home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / texinfo / info / NEWS < prev    next >
Text File  |  1994-01-28  |  7KB  |  172 lines

  1. This release of Info is version 2.8.  Please read the file README.
  2.  
  3. Changes since 2.5 beta:
  4.  
  5. Note that versions 2.6 and 2.7 Beta were only released to a select group.
  6.  
  7. * "info-" removed from the front of M-x commands.
  8.  
  9. * Automatic footnote display.  When you enter a node which contains
  10.   footnotes, and the variable "automatic-footnotes" is "On", Info pops
  11.   up a window containing the footnotes.  Likewise, when you leave that
  12.   node, the window containing the footnotes goes away.
  13.  
  14. * Cleaner built in documentation, and documentation functions.
  15.  
  16.   Use:
  17.     o `M-x describe-variable' to read a variable's documenation
  18.     o `M-x describe-key' to find out what a particular keystroke does.
  19.     o `M-x describe-function' to read a function's documentation.
  20.     o `M-x where-is' to find out what keys invoke a particular function.
  21.  
  22. * Info can "tile" the displayed windows (via "M-x tile-windows").  If
  23.   the variable "automatic-tiling" is "On", then splitting a window or
  24.   deleting a window causes the remaining windows to be retiled.
  25.  
  26. * You can save every keystroke you type in a "dribble file" by using the
  27.   `--dribble FILENAME' option.  You can initially read keystrokes from an
  28.   alternate input stream with `--restore FILENAME', or by redirecting
  29.   input on the command line `info < old-dribble'.
  30.  
  31. * New behaviour of menu items.  If the label is the same as the
  32.   target node name, and the node couldn't be found in the current file,
  33.   treat the label as a file name.  For example, a menu entry in "DIR"
  34.   might contain:
  35.  
  36.     * Emacs::        Cool text-editor.
  37.  
  38.   Info would not find the node "(dir)Emacs", so just plain "(emacs)"
  39.   would be tried.
  40.  
  41. * New variable "ISO-Latin" allows you to use European machines with
  42.   8-bit character sets.
  43.  
  44. * Cleanups in echo area reading, and redisplay.  Cleanups in handling the
  45.   window which shows possible completions.
  46.  
  47. * Info can now read files that have been compressed.  An array in filesys.c
  48.   maps extensions to programs that can decompress stdin, and write the results
  49.   to stdout.  Currently, ".Z"/uncompress, ".z"/gunzip, and ".Y"/unyabba are
  50.   supported.  The modeline for a compressed file shows "zz" in it.
  51.  
  52. * There is a new variable "gc-compressed-files" which, if non-zero, says
  53.   it is okay to reclaim the file buffer space allocated to a file which
  54.   was compressed, if, and only if, that file's contents do not appear in
  55.   any history node.
  56.  
  57. * New file `nodemenu.c' implements a few functions for manipulating
  58.   previously visited nodes.  `C-x C-b' (list-visited-nodes) produces a
  59.   menu of the nodes that could be reached by info-history-node in some
  60.   window.  `C-x b' (select-visited-node) is similar, but reads one of
  61.   the node names with completion.
  62.  
  63. * Keystroke `M-r' (move_to_screen_line) allows the user to place the cursor at
  64.   the start of a specific screen line.  Without a numeric argument, place the
  65.   cursor on the center line; with an arg, place the cursor on that line.
  66.  
  67. * Interruptible display implemented.  Basic display speedups and hacks.
  68. * The message "*** Tags Out of Date ***" now means what it says.
  69. * Index searching with `,' (info-index-next) has been improved.
  70. * When scrolling with C-v, C-M-v, or M-v, only "Page Only" scrolling
  71.   will happen.
  72.  
  73. * Continous scrolling (along with `]' (info-global-next) and `['
  74.   (info-global-prev) works better.  `]' and `[' accept numeric
  75.   arguments, moving that many nodes in that case.
  76.  
  77. * `C-x w' (info-toggle-wrap) controls how lines wider than the width
  78.   of the screen are displayed.  If a line is too long, a `$' is
  79.   displayed in the rightmost column of the window.
  80.  
  81. * There are some new variables for controlling the behaviour of Info
  82.   interactively.  The current list of variables is as follows:
  83.  
  84.   Variable Name      Default Value  Description
  85.   -------------      -------------  -----------
  86.   `automatic-footnotes' On        When "On", footnotes appear and
  87.                     disappear automatically.
  88.  
  89.   `automatic-tiling'    Off        When "On", creating of deleting a
  90.                     window resizes other windows.
  91.  
  92.   `visible-bell'        Off        If non-zero, try to use a visible bell.
  93.  
  94.   `errors-ring-bell'    On        If non-zero, errors cause a ring.
  95.  
  96.   `show-index-match'    On        If non-zero, the portion of the string
  97.                     matched is highlighted by changing its
  98.                     case.
  99.  
  100.   `scroll-behaviour'    Continuous  One of "Continuous", "Next Only", or
  101.                     "Page Only".  "Page Only" prevents you from
  102.                     scrolling past the bottom or top of a node.
  103.                     "Next Only" causes the Next or Prev node to
  104.                     be selected when you scroll past the bottom
  105.                     or top of a node.  "Continous" moves
  106.                     linearly through the files hierchichal
  107.                     structure.
  108.  
  109.   `scroll-step'            0        Controls how scrolling is done for you when
  110.                     the cursor moves out of the current window.
  111.                     Non-zero means it is the number of lines
  112.                     you would like the screen to shift.  A
  113.                     value of 0 means to center the line
  114.                     containing the cursor in the window.
  115.  
  116.   `gc-compressed-files' Off        If non-zero means it is okay to reclaim the
  117.                     file buffer space allocated to a file which
  118.                     was compressed, if, and only if, that
  119.                     file's contents do not appear in the node
  120.                     list of any window.
  121.  
  122.   `ISO-Latin'            Off        Non-zero means that you are using an ISO
  123.                     Latin character set.  By default, standard
  124.                     ASCII characters are assumed.
  125. ________________________________________
  126. This release of Info is version 2.5 beta.
  127.  
  128. Changes since 2.4 beta:
  129.  
  130. * Index (i) and (,) commands fully implemented.
  131. * "configure" script now shipped with Info.
  132. * New function "set-variable" allows users to set various variables.
  133. * User-settable behaviour on end or beginning of node scrolling.  This
  134.   supercedes the SPC and DEL changes in 2.3 beta.
  135.  
  136. ________________________________________
  137. This release of Info is version 2.4 beta.
  138.  
  139. Changes since 2.3 beta:
  140.  
  141. * info-last-node now means move to the last node of this info file.
  142. * info-history-node means move backwards through this window's node history.
  143. * info-first-node moves to the first node in the Info file.  This node is
  144.   not necessarily "Top"!
  145. * SPC and DEL can select the Next or Prev node after printing an informative
  146.   message when pressed at the end/beg of a node.
  147.  
  148. ----------------------------------------
  149. This release of Info is version 2.3 beta.
  150.  
  151. Changes since 2.2 beta:
  152.  
  153. * M-x command lines if NAMED_COMMANDS is #defined.  Variable in Makefile.
  154. * Screen height changes made quite robust.
  155. * Interactive function "set-screen-height" implements user height changes.
  156. * Scrolling on some terminals is faster now.
  157. * C-l with numeric arguement is fixed.
  158.  
  159. ----------------------------------------
  160. This release of Info is version 2.2 beta.
  161.  
  162. Changes since 2.0:
  163.  
  164. * C-g can now interrupt multi-file searches.
  165. * Incremental search is fully implemented.
  166. * Loading large tag tables is much faster now.
  167. * makedoc.c replaces shell script, speeding incremental builds.
  168. * Scrolling in redisplay is implemented.
  169. * Recursive uses of the echo area made more robust.
  170. * Garbage collection of unreferenced nodes.
  171.  
  172.